home *** CD-ROM | disk | FTP | other *** search
/ Dictionaries & Language / Dictionaries and Language (Chestnut CD-ROM) (1993).iso / chinese / njs210_1 / njstar2.doc < prev    next >
Encoding:
Text File  |  1992-05-10  |  49.3 KB  |  1,008 lines

  1. (This is the second part of NJSTAR USER'S MANUAL. Read NJSTAR1.DOC first)
  2. =============================================================================
  3.                                MACROS COMMANDS
  4.  
  5.  
  6. This section describes NJStar's Macro related functions.  Those functions are
  7. located under "Macro" in the main menu.
  8.  
  9. A macro is a  predefined sequence of a  series of NJStar commands.   User may
  10. record a  series commands  within NJStar,  or write  a macro  text file  with
  11. NJStar  and then  compile it  with  NJStar's utility  program, NJMAC.EXE,  to
  12. convert it to a macro file.
  13.  
  14. Please also see  PROGRAM USAGE for information  about loading a macro  in the
  15. command line.
  16.  
  17. FUNCTION   <MacroRec>         [F11]
  18.             ╝╟┬╝├ⁿ┴ε
  19.  
  20. This  function will  start and  stop macro recording.   When  entering macro-
  21. record mode,  the right side of the  bottom will display a  sign of "Record."
  22. Mouse  user may point  the mouse cursor at  that position and  then click the
  23. left button once to invoke this function.
  24.  
  25. When start  this function, the following sequence of  NJStar commands will be
  26. recorded  and stored  at the  macro  buffer, until  user invoke  this command
  27. again.  The content in the macro  buffer will be wiped out when quitting from
  28. NJStar, or replaced by the next recorded macro.
  29.  
  30. When recording a macro, pressing [Esc] would be handle as a normal command to
  31. be recorded, instead of cancellation of the command.
  32.  
  33. FUNCTION   <MacroExec>        [F12]
  34.             ╓┤╨╨╝╟┬╝
  35.  
  36. This function will execute the macro stored at the macro buffer.  If there is
  37. nothing at the macro buffer, it will do nothing.
  38.  
  39. If a user macro turns out to be a locked loop, user may press [Ctrl + C] to
  40. cancel the execution.
  41.  
  42. FUNCTION   <SaveMacro>        [Alt + F11]
  43.             ╝╟┬╝┤µ┼╠
  44.  
  45. This function will save the content in the macro buffer to a file with a user
  46. specified file name.   Thus, a  recorded macro can  be repeatedly used  later
  47. again.   The  macro filename  use the  standard  extension name,  .NJM.   Any
  48. extension name input by user other than that would be ignored.
  49.  
  50. If  the file name given by user is exists for other file, the system will ask
  51. user to confirm  the file name.  User  may press [Esc] at any  time to cancel
  52. the request.
  53.  
  54. FUNCTION   <ReadMacro>        [Alt + F12]
  55.             ╢┴╚í╝╟┬╝
  56.  
  57. This function will read a user specified macro file into the macro buffer, so
  58. that user can execute the macro from the buffer after this.
  59.  
  60. FUNCTION   <RepeatCmd>        [Ctrl + F11]
  61.             ╓╪╕┤├ⁿ┴ε
  62.  
  63. This function will repeat previous pressed command for given number of times.
  64. If previous pressed key is a macro command, then <RepeatCmd> will repeat the
  65. Macro for given number of times. This function can not be used in the macro.
  66.  
  67. MACRO TEXT FILES
  68.  
  69. The following is the basic regulations for macro files.
  70.  
  71.      1.   A macro text file should be named with extension name .NJ;
  72.  
  73.      2.   A text macro file may only contains one macro statement;
  74.  
  75.      3.   A macro statement should starts with a string "Macro";
  76.  
  77.      4.   When a line  goes too long, use "&" at the end  of line to indicate
  78.           continuing to the next line;
  79.  
  80.      5.   A comment line in the macro text file starts with a "*" character;
  81.  
  82.      6.   All commands  listed in this  manual can be  written to macro  text
  83.           file, separated by a space.  Upcase or lowercase doesn't matter;
  84.  
  85.      7.   Use double quotation marks  ("") to input the enclosed  text to the
  86.           editing screen or a search string at prompt;
  87.  
  88.      8.   Use single quotation marks  ('') to input the enclosed text  to the
  89.           editing screen or a Chinese character code at prompt;
  90.  
  91.      9.   Use #nnn to input an ASCII character  presented by nnn.  The number
  92.           nnn can be either in Decimal, Hex, or Oct format;
  93.  
  94.      10.  Use $nn to sleep the execution for a period of nn ticks.  One tick
  95.           is equal to 1/18 second.  User  input would be ignored  during the
  96.           sleeping time;
  97.  
  98.      11.  Use <Pause> command to pause the execution of the macro, until user
  99.           press [Return]  or [Esc].   User may carry out  other editing tasks
  100.           during the pause time when Njstar prompts user for a search  string
  101.           or file name;
  102.  
  103.      12.  Use  <ScreenOff> to  freeze the  screen display  when the  macro is
  104.           excused.  Use <ScreenOn>  to turn on the screen.   The default mode
  105.           is <ScreenOn>;
  106.  
  107.      13.  Use string plus  ":" to  compose a  label.  A  macro statement  can
  108.           contains up to 64 labels;
  109.  
  110.      14.  Use <Jump> followed  by a label to  indicate the command switch  to
  111.           the label within the macro statement unconditionally;
  112.  
  113.      15.  Use <JTrue> followed  by a label to indicate  the command switch to
  114.           the label within  the macro statement when the  previous command is
  115.           successfully executed; and
  116.  
  117.      16.  Use <JFalse>  followed by a label to indicate the command switch to
  118.           the label within the macro  statement when the previous command can
  119.           not be executed.
  120.  
  121. Here  is an example of a macro  statement,  This macro will replace two ASCII
  122. "A1A1"   characters  (Pure-Chinese  Space  characters)  to  two  ASCII  space
  123. characters.
  124.  
  125.      [EXAMPLE]
  126.  
  127.           Macro ASCinput Replace "íí" Enter "  " Enter file
  128.  
  129. NJMAC.EXE
  130.  
  131. The utility program NJMAC.EXE is under the  same subdirectory of NJSTAR.  The
  132. following is the usage of this program.
  133.  
  134.      [USAGE]
  135.           C:\NJSTAR20> NJMAC macfile
  136.  
  137. The macfile is the name  of a macro text file.  Please add the drive name and
  138. the full path if necessary.  The resultant macro file will use  the same file
  139. name, with an extension name .NJM.  The location of the resultant macro  file
  140. is the same as that of the original macro text file.
  141.  
  142. If the macro text file contains void statement, NJMAC will generate  an error
  143. message indicating the error location within the file.
  144.  
  145. =============================================================================
  146.                         PRINTING AND FILE CONVERSION
  147.  
  148.  
  149. This  section  describes  NJStar's printing  and  file  conversion functions.
  150. Those functions are located under the "output" in the main menu.
  151.  
  152. FUNCTION   <Print>            [Ctrl + P]
  153.             ┤≥╙í╩Σ│÷
  154.  
  155. This function will print the current file to the user defined output device.
  156.  
  157. Currently, NJStar  may support 9 pin  or 24 pin dot matrix  printer (Epson or
  158. IBM-ProPrinter  and their compatibles), Canon BubbleJet,  and HP series laser
  159. printers.  User need to install a proper printer driver with  NJCONFIG.EXE in
  160. order to use a desired printer.
  161.  
  162. After a  correct printer drive is installed, user  can print the current file
  163. to the printer  or a file.   Please notice that, the  output character style,
  164. traditional or simplified, depends upon  the current displaying style.  Thus,
  165. to print a file in traditional  characters, user may need to set the  display
  166. to traditional style first by using <SwitchCCLIB> command.
  167.  
  168. If the printer is not attached to the computer, or user prefers  to use other
  169. printer, user print the  current file to a printing file  first, according to
  170. another  printer's setting.   Then,  user may  use NJStar's  utility program,
  171. NJPRN.EXE, to print out that file later.
  172.  
  173. NJPRN.EXE
  174.  
  175. The utility program NJPRN.EXE is under the  same subdirectory of NJSTAR.  The
  176. following is the usage of this program.
  177.  
  178.      [USAGE]
  179.           C:\NJSTAR20> NJPRN printfile port
  180.  
  181. Printfile is  a file name for the printing  file generated by NJStar.  Please
  182. include the  drive name and  the full  path for NJPRN.EXE  and print  file if
  183. necessary.  The valid ports are PRN, LPT1, LPT2, or LPT3.
  184.  
  185. PRINTING FORMAT COMMANDS
  186.  
  187. The  following is  NJStar's printing  format  commands, used  to enhance  the
  188. output format.
  189.  
  190.   English Name          Chinese Name     Function
  191.   ===================   ==============   =====================================
  192.    \NewPage              \╗╗╥│           Forcing to print on a new page
  193.  
  194.    \PageNumber(nn)       \╥│║┼(nn)       Specifying the  current page  number
  195.                                          to nn
  196.  
  197.    \NumberStyle("(%d)")  \╥│▒Ω("╡┌%d╥│") Specifying  the page number style  as
  198.                                          text shown in "".  Variable %d is the
  199.                                          current page number
  200.  
  201.    \NoPageNumber         \╬▐╥│║┼         Not printing page number
  202.  
  203.    \LeftMargin(nn)       \╫≤┐╒(nn)       Setting left margin to nn Chinese
  204.                                          characters
  205.  
  206.    \RightMargin(nn)      \╙╥┐╒(nn)       Setting right margin to nn Chinese
  207.                                          characters
  208.  
  209.    \TopMargin(nn)        \╔╧┐╒(nn)       Setting top margin to nn lines
  210.                                          (1 line=1/6 inch or 1 line= 30 dots)
  211.  
  212.    \BottomMargin(nn)     \╧┬┐╒(nn)       Setting bottom margin  to  nn  lines
  213.                                          (1 line=1/6 inch or 1 line= 30 dots)
  214.  
  215.    \LineSpace(nn)        \╨╨╛α(nn)       Setting the  space between  lines to
  216.                                          nn dots
  217.  
  218.    \Font(nn)             \╫╓║┼(nn)       Setting the size of Chinese character
  219.                                          to nn. ( 1 normal; 2 large)
  220.  
  221.    \Center               \╓╨╨─           Centering the current line on page
  222.  
  223.    \FanTi                \╖▒╠σ           Using un-simplified Characters
  224.  
  225.    \JianTi               \╝≥╠σ           Using simplified Characters
  226.    ===================   ==============  =====================================
  227.  
  228. Please notice,
  229.  
  230.      1)   All commands must start at  beginning of the Line, and started with
  231.           "\".   To print a "\" character at the beginning of a line,  please
  232.           use "\\".
  233.  
  234.      2)   More than one command can be written in one line.
  235.  
  236. FUNCTION   <PcxSaveFile>      [Shift + F5]
  237.             ╩Σ│÷ PCX
  238.  
  239. This  function will create  a set  of PCX  file (one file  per page)  for the
  240. current file.  The purpose of this function is mainly to  help user to send a
  241. GB file via computerized fax equipment.
  242.  
  243. A GB  file can't be supported  by fax software directly.   But PCX is  one of
  244. popular graphic format, supported by many  fax software too.  Thus, user  may
  245. use this function to convert the current file to PCX files first.  Then, user
  246. may send the PCX files via computerized fax equipment.
  247.  
  248. Since  PCX is primarily  a graphic format,  user may use  any graphic editor,
  249. such as PC PaintBrush, to edit the resultant graphic files.
  250.  
  251. FUNCTION   <zWEditFile>       [Shift + F8]
  252.             ╢┴zW╬─╝■
  253.  
  254. This function will load a  file in zW format, and then decode it  for display
  255. in Chinese.
  256.  
  257. The zW format was initially proposed by Yagui Wei and Ed Lai, for the purpose
  258. of transferring GB files via mainframe networks in ASCII mode.  GB files  use
  259. extended  ASCII characters  for internal  codes.   Those  characters are  not
  260. allowed to  be transferred  in ASCII  mode, say,  as an  e-mail message,  via
  261. mainframe  networks.  Therefore, one of possible ways to transfer those files
  262. in ASCII format is to use popular  UUENCODE.EXE or UUENCODE.COM program.  But
  263. UUENCODEs produce a  great amount of overhead data so that the resultant file
  264. size is very big, usually 33.33% more than original file.  The zW format uses
  265. much small overhead data, yet the resultant  file can be transferred in ASCII
  266. format.  There are some zW  viewers available for PC computers, so that  user
  267. can read a Chinese message in zW format directly.
  268.  
  269. In a zW file,
  270.  
  271.      1)   Each line starts  with a string of  "zW," with a  max length of  78
  272.           characters;
  273.  
  274.      2)   Chinese characters  (161-254/0xA1-0xFE) are  masked with  high  bit
  275.           off,  that is, shifted by 128 in decimal value;
  276.  
  277.      3)   The End of Line character is preceded with a "#" character;
  278.  
  279.      4)   All other ASCII characters are preceded with a blank character.
  280.  
  281. NJStar would remember the current  file is a zW file after  it is loaded with
  282. this function.   Therefore, when saving file later,  it will save the file in
  283. zW format again.  To change the format  to GB, user needs to use <SaveAs>  to
  284. save it with another name in GB code.
  285.  
  286. Please see PROGRAM USAGE in this manual for the -zW option at command line.
  287.  
  288. FUNCTION   <zWDecode>         [Shift + F7]
  289.             ╥δzW╬─╝■
  290.  
  291. This function will convert a zW file to GB format.
  292.  
  293. If a  zW format file  is loaded  without using  <zWEditFile> command,  NJStar
  294. would simply handle it as  a GB file without Chinese characters.   Thus, user
  295. may use this function  to decode the current zW  file into GB format.   After
  296. that, this file would be saved in GB format permanently.
  297.  
  298. FUNCTION   <zWSaveFile>       [Shift + F6]
  299.             ┤µzW╬─╝■
  300.  
  301. This function will encode the current file into zW format and save the result
  302. to disk  with a user  specified file name.   When prompted, user may  enter a
  303. file name, with drive  name and full path if necessary.  NJStar will ask user
  304. to confirm the file name if it exists.
  305.  
  306. Since  the resultant file  is in  zW format,  user may send  the file  to the
  307. mainframe network in ASCII mode.
  308.  
  309. FUNCTION   <HzEditFile>       [Shift + F4]
  310.             ╢┴Hz╬─╝■
  311.  
  312. This function will load a  file in Hz format, and then  decode it for display
  313. in Chinese.
  314.  
  315. Hz format,  proposed collectively and  finalized by  Fung F. Lee,  is another
  316. format   dedicated  for  transferring  Chinese  file  via  computer  network.
  317. Generally it uses  less overhead data than zW format in conversion, and cover
  318. more  loopholes in zW  format.  However,  some mail editors  can't accept the
  319. lengthy lines in Hz format.
  320.  
  321. Hz format keeps the original hard line setting.  Then, a line is divided into
  322. different segment, grouping by  the following four types of data.   Then, the
  323. following coding schemes and the  identifiers are applied for different types
  324. of data.
  325.  
  326.                ASCII CODE        ENCODING        IDENTIFIER
  327.                =============     ===========     ==========
  328.                c =   0 -  31     C = c +  32     ~(C~)
  329.                c =  32 - 127     C = c             C   (no identifier)
  330.                c = 128 - 160     C = c -  96     ~[C~]
  331.                c = 161 - 254     C = c - 128     ~{C~}
  332.  
  333. NJStar  would remember the current file is  a Hz file after it is loaded with
  334. this command.  Therefore, when saving file later, it will save the file in Hz
  335. format  again.  To  change the format  to GB, user  needs to  use <SaveAs> or
  336. <RenameFile> function to save it with another name.
  337.  
  338. Please see PROGRAM USAGE in this manual for the -Hz option at command line.
  339.  
  340. FUNCTION   <HzDecode>         [Shift + F3]
  341.             ╥δHz╬─╝■
  342.  
  343. This function will convert a Hz file to GB format.
  344.  
  345. If a  Hz format  file is  loaded without  using <HzEditFile> command,  NJStar
  346. would simply handle it  as a GB file without Chinese  characters.  Thus, user
  347. may use this function to  decode the current Hz file  into GB format.   After
  348. that, this file would be saved in GB format permanently.
  349.  
  350. FUNCTION   <HzSaveFile>       [Shift + F2]
  351.             ┤µHz╬─╝■
  352.  
  353. This  function will  encode  the current  file into  Hz format  and  save the
  354. results  to disk with  a user specified file  name.  When  prompted, user may
  355. enter a file  name, with drive name and full path if  necessary.  NJStar will
  356. ask user to confirm the file name if it exists.
  357.  
  358. Since the  resultant file  is in Hz  format, user  may send  the file to  the
  359. mainframe network in ASCII mode.
  360.  
  361. =============================================================================
  362.                                 NJCONFIG.EXE
  363.  
  364.  
  365. NJCONFIG.EXE is one  of NJStar's utility programs.   However, it is  the most
  366. important one because  it is  used to  initialize the NJStar.   This  section
  367. describes the basic procedures for NJCONFIG.EXE.
  368.  
  369. To run NJCONFIG.EXE,  first make sure  it is in  the current subdirectory  or
  370. accessible through system  path statement.  Please  also make a back  copy of
  371. current NJSTAR.EXE.  Then, at DOS prompt, enter the following command,
  372.  
  373.      [USAGE]
  374.           C:\NJSTAR20> NJCONFIG
  375.  
  376. After receiving the correct command,  NJCONFIG.EXE will be invoked, beginning
  377. with the following message,
  378.  
  379.           Enter the program name to configure [NJSTAR.EXE]:
  380.  
  381. Press [Return] key if the default file name is correct, or enter a file name,
  382. including the  drive name and  full path if  necessary.  Then,  the following
  383. main menu will display at the center of the screen,
  384.  
  385.           Options:
  386.  
  387.                C - Color settings
  388.                G - General options
  389.                H - Help screen
  390.                K - Keys configuration
  391.                R - Restore default key setting
  392.                P - Printer settings
  393.                I - Install printer driver
  394.                S - Save and quit
  395.                Q - Quit without save
  396.  
  397.           Enter your option:
  398.  
  399. Here are the  questions for  color settings.   Please notice  that the  color
  400. number is shown on the screen as sample color when the program is running.
  401.  
  402.           Enter background color for text editing screen. (0-  7) [  1]:
  403.           Enter background color for bottom input line... (0-  7) [  4]:
  404.           Do you want to use dark background color..............[ NO]?
  405.           Do you want to display marked block in reverse video..[YES]?
  406.  
  407.           Enter color number for text editing screen... (1- 15) [ 10]:
  408.           Enter color number for cursor ............... (1- 15) [ 15]:
  409.           Enter color number for separation line....... (1- 15) [ 15]:
  410.           Enter color number for QuickHelp screen ..... (1- 15) [ 11]:
  411.           Enter color number for marked text block..... (1- 15) [ 13]:
  412.           Enter color number for menu (Reverse Video).. (1- 15) [ 15]:
  413.           Enter color number for hilighted menu item... (1- 15) [ 13]:
  414.  
  415.           Enter color number for bottom line .......... (1- 15) [ 15]:
  416.           Enter color number for general message ...... (1- 15) [ 14]:
  417.           Enter color number for ERROR message......... (1- 15) [ 13]:
  418.  
  419. Here  are  the  questions   for  general  options.    Please  refer   to  the
  420. corresponding materials in this manual.
  421.  
  422.           Is your keyboard a Enhanced Keyboard (if NJStar did
  423.           not work on your computer/keyboard please select NO). [ NO]?
  424.           Do you want to start with FanTi Chinese.............. [ NO]?
  425.           Do you want to start with PinYin input mode.......... [YES]?
  426.           Do you want to create a backup file.................. [YES]?
  427.           Do you want to save file in binary (Smaller size).... [ NO]?
  428.           Do you want to order PinYin table dynamically........ [YES]?
  429.           Do you want to save dictionaries automatically....... [YES]?
  430.           Do you want to start with pure Chinese input......... [ NO]?
  431.           Do you want to use 25 lines if VGA screen installed.. [YES]?
  432.           Do you want to display end of line mark.............. [ NO]?
  433.           Enter ASCII code of end of line(EOL) mark....... (1-255) [ 20]:
  434.           Do you want to display the real line number(Slow).... [YES]?
  435.           Do you want to display <*** End of File ***> mark.... [YES]?
  436.           Do you want to enter search string for SearchBackward.[YES]?
  437.           Do you want to have a blinking cursor................ [YES]?
  438.           Do you want to have sound beep when error occurred... [YES]?
  439.           Enter sound frequency (Hz).................... (1-5000) [400]:
  440.           Enter autosave interval in min. (0--no save).. (0- 60) [ 10]:
  441.  
  442. Here  is the  prompt for  the user  specified help screen  file.   Please see
  443. <QuickHelp> in MENU AND HELP for the specification of the help file.
  444.  
  445.           Enter help screen configuration file name [NJCONFIG.HLP]:
  446.  
  447. Here is the prompt  for the user specified key assignment file.   The default
  448. file name is  NJCONFIG.KEY.  User may  specify a user key  assignment file if
  449. necessary.
  450.  
  451.           Enter key configure data file name [NJCONFIG.KEY]:
  452.  
  453. User  may  use  NJStar  to  write  a  key  assignment,  reassigning  NJStar's
  454. configurable functions to  user specified keys.  Here,  some important points
  455. are,
  456.  
  457.      1.   Use GB format (or ASCII) format for the key assignment file;
  458.  
  459.      2.   Comment   lines  in  the  key   assignment  file  starts  with  "*"
  460.           characters;
  461.  
  462.      3.   Use function names in English as listed in Appendix 1;
  463.  
  464.      4.   Use the standard key names and button names listed in Appendix 2;
  465.  
  466.      5.   A function may be assigned to more than one key.  But if more than
  467.           one function is assigned to the same key, only the last assignment
  468.           will be honored.
  469.  
  470.      6.   Please notice some keys are only available for enhanced keyboards.
  471.           When a  non-available key  is used in  a key assignment file,  the
  472.           the assignment will be ignored.
  473.  
  474.      7.   A function can be assigned to a single key (or a mouse button) or a
  475.           primary key combination ([Shift], [Alt], or [Ctrl] + other keys) in
  476.           the following way:
  477.  
  478.                     KeyName   Function Name or a macro
  479.  
  480.           [EXAMPLE]
  481.                     F1        QuickHelp
  482.                     @Y        Paste
  483.                     ^X        Meta
  484.                     #Enter    HardReturn
  485.  
  486.      8.   A function  can  be assigned  to  a  meta key  combination  in  the
  487.           following  way (Note:  a  meta  key should  be  defined prior  meta
  488.           combination.),
  489.  
  490.                     MetaKey   FunctionName or a macro
  491.  
  492.           [EXAMPLE]
  493.                     Meta+^Z   QuitFile
  494.                     Meta+W    Macro EXInput 'B'
  495.  
  496.  
  497. Here  are  the questions  for  the printer  settings.   Please  refer  to the
  498. corresponding materials in this manual.
  499.  
  500.           Printer port (0=Lpt1  1=Lpt2  ).................... (0-  1) [  0]:
  501.           Double strike for 9 pin printing (0=NO, 1=YES)..... (0-  1) [  0]:
  502.           Paper feeding (0=Manual 1=Continuous).............. (0-  1) [  1]:
  503.           Should NJSTAR interpret the '\' formatting commands.........[YES]?
  504.           Do you want to print page number............................[YES]?
  505.           Default paper length in lines (1 line= 1/6 inch).. (20- 90) [ 70]:
  506.           Default top margin in lines (1 line= 1/6 inch)..... (2- 20) [  6]:
  507.           Default bottom margin in lines (1 line= 1/6 inch).. (2- 20) [  9]:
  508.           Paper width in number of Chinese chars............ (20- 70) [ 60]:
  509.           Default left margin in number of Chinese chars..... (0- 20) [ 10]:
  510.           Default right margin in number of Chinese chars.... (0- 20) [ 10]:
  511.           Default space between 2 lines(in dots)............. (0- 72) [ 12]:
  512.  
  513. Here is the prompt for the  user specified printer drive file.  Please notice
  514. that only 9 pin printer drivers are supplied with NJStar Shareware Version.
  515.  
  516.           Printer driver currently installed: EPSON 9p & Compat's
  517.  
  518.           Printer Drivers Available:
  519.  
  520.                0. EPSONFX1.DRV    - EPSON FX 60 dpi
  521.                1. EPSONFX2.DRV    - EPSON FX 120 dpi
  522.                2. EPSON9P.DRV     - EPSON 9p & Compat's
  523.                3. IBMPRO9P.DRV    - IBM Pro 9p & Comp's
  524.                4. EPSON24.DRV     - EPSON24p & Compat's
  525.                5. HPLASER.DRV     - HP Laserjet+ & PCLs
  526.                6. IBMX24.DRV      - IBM Pro X24 &Comp's
  527.                7. CANONBJE.DRV    - Canon BJ(EPSON Comp
  528.                8. CANONBJI.DRV    - Canon BJ(IBM Comp.)
  529.  
  530.      Enter printer driver number  (0-  8) [  2]:
  531.  
  532. User may enter one number that is best fit to the user's printer.
  533.  
  534. Finally, the menu item,  "R - Restore  default key setting",  can be used  to
  535. restore NJStar's default keyboard settings.  When finish, user may select "S"
  536. to save and quit, "Q" to cancel all changes made in the current session.
  537.  
  538. =============================================================================
  539.                                 LXGB2DIC.EXE
  540.  
  541.  
  542. This program  is used to  add or delete  LianXiang words to or  from NJStar's
  543. LianXiang dictionary,  NANJILX.DIC.    The  program runs  under  DOS  prompt.
  544. Please make  sure the program  is in the  current subdirectory or  accessible
  545. through the path statement.   Please also make  a back up copy  of dictionary
  546. file before run this command.  Here are the program usages.
  547.  
  548.      1.   Add  LianXiang words from a  word list file, say,  CIHUI.GB, to the
  549.           dictionary file, say, NANJILX.DIC.
  550.  
  551.           [USAGE]
  552.                LXGB2DIC [/atend] @nanjilx.dic +cihui.gb
  553.                     /atend -- add word at end of the list
  554.  
  555. The dictionary  file should  be in  dictionary format.   The  word list  file
  556. should be  in GB format, with one  word at one line.   The first character in
  557. each word should be  in the Class One of the GB  table.  The optional switch,
  558. "/atend", will  force words  to be  added at  the end  of the  list for  each
  559. character.  Otherwise, the newly added  word will appear at the beginning  of
  560. the corresponding list.  After running the program, the dictionary  file will
  561. be updated.
  562.  
  563.      2.   Delete  words listed  in the  given file,  say, CIHUI.GB,  from the
  564.           dictionary file, say, NANJILX.DIC.
  565.  
  566.           [USAGE]
  567.                LXGB2DIC @nanjilx.dic -cihui.gb
  568.  
  569. The requirements of  files are the same  as those in adding  LianXiang words.
  570. See above.  After running the program, the dictionary file will be updated.
  571.  
  572.      3.   Use  the old  dictionary file,  say, DICFILE.OLD,  to update  a new
  573.           dictionary file, say, DICFILE.NEW.
  574.  
  575.           [USAGE]
  576.                LXGB2DIC @dicfile.new @dicfile.old
  577.  
  578. In this case, both  files should be NJStar  dictionary format.  The name  for
  579. the new dictionary file  should go before that of  the old one.  The  program
  580. will check words in the DICFILE.OLD,  and update DICFILE.NEW with those words
  581. are not found in it.  After running, only the first file will be updated.
  582.  
  583. =============================================================================
  584.                                  CCFONT.EXE
  585.  
  586.  
  587. This  utility program  will update  NJStar's font  files with  user specified
  588. characters.   The program runs under DOS  prompt.  Please make  sure that the
  589. program  is  in the  current  subdirectory  or  accessible through  the  path
  590. statement.  Please make a back up copy for each font file if necessary.  Here
  591. are the program usage.
  592.  
  593.      [USAGE]
  594.                CCFONT   -[options] fontfile cclibfile
  595.  
  596.      [OPTIONS]
  597.                     16   - use 16x16 matrix(default)
  598.                     24   - use 24x24 matrix
  599.                     32   - use 32x32 matrix
  600.                     48   - use 48x48 matrix
  601.                     64   - use 64x64 matrix
  602.                     R    - rotate 90 degree
  603.                     B nn - the no. of blank sections(def=8)
  604.  
  605. Please notice, more  than one option can  be used in one  command line.   For
  606. 24x24  font  file, the  option -R  must be  used because  the font  files are
  607. rotated internally for the efficiency of 24 dot printer.
  608.  
  609.      [EXAMPLE]
  610.                C:\NJSTAR20> CCFONT -24 -R font24.dat CCLIBF.24
  611.  
  612. The fontfile in the command line is the file that contains Chinese characters
  613. in dot matrix.  a  font file can have more than one Chinese  character.  Each
  614. character starts with a GuoBiao  address for adding it, immediately following
  615. by the character's dot matrix.  The recommended GB area for adding characters
  616. is AFE4  -> AFFE,  and there  must be  a "+"  sign in  the front  of each  GB
  617. address.   The dot matrix  characters may consist space  characters and other
  618. visible ASCII characters, with relevant number of lines and columns after the
  619. address.  Those characters beyond the given line and column are ignored. (See
  620. file FONT.FON for example.)
  621.  
  622. The cclibfile is the standard font files used by NJStar.   Currently user are
  623. supplied with CCLIB.16, CCLIBF.16, CCLIB.24 and CCLIBF.24.  They are in 16*16
  624. and 24*24 font files correspondingly. (Note: 24*24 font files are provided in
  625. NJStar registered version only.)
  626.  
  627. The fontfile and cclibfile should have same pixel.  That  is, for a character
  628. to be  added to CCLIB.24 or  CCLIBF.24, the font  file must have  a 24x24 dot
  629. matrix.  For  example, if a  16x16 font file  FONT.FON has been created  (see
  630. below), user may add it to CCLIB.16 by using the following command,
  631.  
  632.           C:\NJSTAR20> CCFONT -16 font.fon CCLIB.16 
  633.  
  634. Then  user  may use  NJStar  to  view file  GUOBIAO.DOC,  checking the  added
  635. character at the location of GB AFF0.  Then, user may also try to enter it by
  636. using GB code, AFF0, at GB input mode.
  637.  
  638. ----------Cut following to File: FONT.FON-----------------------------------
  639. -----------------------------------------------
  640. +AFF0            | Assign to GB address: AFF0
  641.                  | The matrix begins from this line
  642. @@@@@@@@    @@   | NOTE: any symbols after line 16 and column 16 are ignored
  643.   @      @@@     |       for 16x16 font.
  644.   @        @     |
  645.   @        @     |
  646.   @@@@@    @     |
  647.   @   @    @     |
  648.   @   @ @@@@@@@  |
  649.  @ @  @    @     |
  650.  @  @ @    @     |
  651.  @  @ @    @     |
  652.  @    @    @     |
  653.  @  @ @    @     |
  654.  @ @  @    @     |
  655. @@@    @      @  |
  656.         @@@@@@@  |
  657. --------------------------------
  658. ----------End of file FONT.FON-----------------------------------------------
  659.  
  660. =============================================================================
  661. APPENDIX 1
  662.  
  663.                     LIST OF NJSTAR CONFIGURABLE FUNCTIONS
  664.  
  665. Note: This table contains all NJStar's configurable functions.  Please notice
  666.       that in the column of DEFAULT KEY, # = Shift+, @ = Alt+, and ^ = Ctrl+.
  667.  
  668. NAME            NAME      DEFAULT KEY    FUNCTION
  669. ==============  ========  =============  ====================================
  670. Menu            ╓≈╣ª─▄▒φ  [#F1]          Call up the main menu
  671. QuickHelp       ╣ª─▄╠ß╩╛  [F1]           Call up the help screen
  672.  
  673. ListDir         ╧╘╩╛─┐┬╝  [@F1]          List user specified directory
  674. EditFile        ▒α╝¡╬─╝■  [F8]           Open user specified file
  675. NextFile        ╧┬╥╗╬─╝■  [F10]          Goto the next file in file ring
  676. PrevFile        ╔╧╥╗╬─╝■  [@F10]         Goto the previous file in file ring
  677. FileList        ╤í╘±╬─╝■  [#F10]         List all files in file ring
  678. RenameFile      ╬─╝■╕─├√  [F7]           Rename the current file
  679. SaveFile        ╬─╝■┤µ┼╠  [F2]           Save the current file to disk
  680. SaveAs          ╗╗├√┤µ┼╠  [^F3]          Save current file to another name
  681. File            ┤µ┼╠═╦│÷  [F4]           Save the current file and quit
  682. SaveAll         ╚½▓┐┤µ┼╠  [^F4]          Save the current file and quit all
  683. QuitFile        ═╦│÷╬─╝■  [F3]           Quit current file (w/ or w/o saving)
  684. QuitAll         ╚½▓┐═╦│÷  [^F3]          Quit all files (w/ or w/o saving)
  685.  
  686. CursorLeft      ╣Γ▒Ω╧≥╫≤  [LEFT]         Move left by one character
  687. CursorRight     ╣Γ▒Ω╧≥╙╥  [RIGHT]        Move right by one character
  688. CursorUp        ╣Γ▒Ω╧≥╔╧  [UP]           Move up by one line
  689. CursorDown      ╣Γ▒Ω╧≥╧┬  [DOWN]         Move down by one line
  690. BegLine         ╥╞╓┴╨╨╩╫  [HOME]         Goto beginning of current screen line
  691. EndLine         ╥╞╓┴╨╨─⌐  [END]          Goto the end of current screen line
  692. WordLeft        ▒╛╛Σ╩╫    [^LEFT]        Move to beginning of current "word"
  693. WordRight       ╧┬╛Σ╩╫    [^RIGHT]       Move to the beginning of next "word"
  694. BegScreen       ╥╞╓┴╞┴╩╫  [^UP], [^A]    Goto top left of the current screen
  695. EndScreen       ╥╞╓┴╞┴─⌐  [^DOWN], [^Z]  Goto bottom left of  current screen
  696. PageUp          ╥╞╓┴╔╧╞┴  [PGUP]         Goto bottom line of previous screen
  697. PageDown        ╥╞╓┴╧┬╞┴  [PGDN]         Goto top line of the next screen
  698. BegFile         ╬─╝■╩╫    [^HOME]        Goto beginning of the current file
  699. EndFile         ╬─╝■─⌐    [^END]         Goto the end of the current file
  700. ScrollUp        ╔╧╣÷╥╗╨╨  [@UP], [^U]    Scroll up screen by one line
  701. ScrollDown      ╧┬╣÷╥╗╨╨  [@DOWN], [^D]  Scorll down screen by on line
  702. GotoLine        ╤░╒╥╨╨║┼  [^F6]          Goto a user specified hard line
  703.  
  704. Enter           ╗╪│╡╝ⁿ    [ENTER]        Enter EOL character or accept input
  705. HardReturn      ╠µ┤·╗╪│╡  [GREYENTER],   Enter EOF character in search string
  706.                           [#ENTER]
  707. DelChar         ╔╛│²║≤╫╓  [DEL]          Delete the current character
  708. BackSpace       ╔╛│²╟░╫╓  [BS]           Delete the previous character
  709. DelLine         ╔╛│²▒╛╨╨  [^BS]          Delete the current line
  710. DelToBegLine    ╔╛╓┴╨╨╩╫  [^J]           Delete to beginning of current line
  711. DelToEndLine    ╔╛╓┴╨╨─⌐  [^K], [^E]     Delete to the end of current line
  712. UnDelLine       ╗╓╕┤╔╛│²  [F9]           Recover latest deleted text
  713. DupLine         ╕┤╓╞▒╛╨╨  [^L]           Duplicate the current line
  714. TimeDate        ╡▒╟░╩▒╝Σ  [^T]           Insert system date and time
  715. ToggleEOL       ╧╘╩╛╨╨─⌐  [^F9]          Toggle display of EOL characters
  716. FileStatus      ╡▒╟░╟Θ┐÷  [^F1]          Report current file status
  717. WordCount       ═│╝╞╫╓╖√  [^F5]          Count a user specified string
  718.  
  719. Search          ▓Θ╒╥╫╓╖√  [F5]           Search for user specified string
  720. SearchForward   ╧≥╟░▓Θ╒╥  [^F]           Continue to search forward
  721. SearchBackward  ╧≥║≤▓Θ╒╥  [^B]           Search backward for given string
  722. SearchReplace   ▓Θ╒╥╠µ╗╗  [F6]           Search and replace with confirmation
  723. Replace         ╫╘╢»╠µ╗╗                 Search and replace w/o confirmation
  724.  
  725. MarkBlock       ┐Θ▒Ω╝╟    [#B]           Mark beginning or end of a block
  726. MarkLine        ╨╨▒Ω╝╟    [#L]           Mark current line as a block
  727. UnMarkBlock     ╧√│²▒Ω╝╟  [#U]           Clear current block mark
  728. MoveBlock       ┐Θ╥╞╢»    [#M]           Move block to the cursor position
  729. CopyBlock       ┐Θ╕┤╓╞    [#C]           Copy block to the cursor position
  730. Copy            ┐Θ┤ó┤µ    [^W]           Store the block to block buffer
  731. Paste           ╗╓╕┤┤ó┤µ  [#Y]           Restore the content of block buffer
  732. DelBlock        ┐Θ╔╛│²    [#D]           Delete the current block
  733. UnDelBlock      ┐Θ╗╓╕┤    [#F9]          Restore latest deleted block
  734. GotoBlock       ╤░╒╥▒Ω╝╟  [^G]           Goto the beginning of current block
  735. SaveBlock       ┐Θ╨┤╬─╝■  [#W]           Save the current block to a file
  736.  
  737. SwitchCCLIB     ╖▒╝≥╫¬╗╗  [^F10]         Change character display style
  738. PureChinese     ┤┐╓╨╬─    [#F9]          Change character input mode
  739. PYInput         ╞┤╥⌠╩Σ╚δ  [#F5]          Set input method to PinYin Input
  740. LianXiang       ┴¬╧δ╟░╫╓  [#X]           Provide LianXiang for previous char.
  741. AddLX           ╘÷╝╙┴¬╧δ  [^F8]          Add marked string to LianXiang Dic.
  742. DelLX           ╧√│²┴¬╧δ  [#F8]          Remove marked string from LX Dic.
  743. SaveDic         ╫╓╡Σ┤µ┼╠  [^F2]          Save both LX Dic and PinYin Dic.
  744. GBinput         ╣·▒Ω╩Σ╚δ  [@F4]          Set input method to GuoBiao Input
  745. QWinput         ╟°╬╗╩Σ╚δ  [@F3]          Set input method to QuWeiMa Input
  746. ASCinput        ╙ó╬─╩Σ╚δ  [^F6]          Set input method to ASCII Input
  747. EXInput         ╞Σ╦ⁿ╩Σ╚δ  [@F2]          Select other input method
  748.  
  749. MacroRec        ╝╟┬╝├ⁿ┴ε  [F11]          Begin or end recording commands
  750. MacroExec       ╓┤╨╨╝╟┬╝  [F12]          Execute recorded commands as a macro
  751. SaveMacro       ╝╟┬╝┤µ┼╠  [#F11]         Save the current macro to a file
  752. ReadMacro       ╢┴╚í╝╟┬╝  [#F12]         Read a macro file to macro buffer
  753. RepeatCmd       ╓╪╕┤├ⁿ┴ε  [^F11]         Repeat the current command
  754.  
  755. Print           ┤≥╙í╩Σ│÷  [^P]           Print the current file
  756. PcxSaveFile     ╩Σ│÷ PCX  [#F5]          Ouput the current file to PCX files
  757. zWEditFile      ╢┴zW╬─╝■  [#F8]          Open a zW file for GB display
  758. zWDecode        ╥δzW╬─╝■  [#F7]          Decode a zW file to GB format
  759. zWSaveFile      ┤µzW╬─╝■  [#F6]          Encode current file to zW format
  760. HzEditFile      ╢┴Hz╬─╝■  [#F4]          Open a Hz file for GB display
  761. HzDecode        ╥δHz╬─╝■  [#F3]          Decode a Hz file to GB format
  762. HzSaveFile      ┤µHz╬─╝■  [#F2]          Encode current file to zW format
  763. ==============  ========  =============  ====================================
  764. =============================================================================
  765. APPENDIX 2
  766.  
  767.                        LIST OF NJSTAR KEY NAMES
  768.  
  769. Note: This table contains  all NJStar's assignable key names.   Please notice
  770.       that # = Shift+ ,  @ = Alt+ ,  and ^ = Ctrl+ .   And those key
  771.       names followed by * are only available at enhance keyboard only.
  772.  
  773.       =======================================================================
  774.       PART I: Function keys
  775.  
  776.               F1   F2   F3   F4   F5   F6   F7   F8   F9   F10   F11*    F12*
  777.              #F1  #F2  #F3  #F4  #F5  #F6  #F7  #F8  #F9  #F10  #F11*   #F12*
  778.              @F1  @F2  @F3  @F4  @F5  @F6  @F7  @F8  @F9  @F10  @F11*   @F12*
  779.              ^F1  ^F2  ^F3  ^F4  ^F5  ^F6  ^F7  ^F8  ^F9  ^F10  ^F11*   ^F12*
  780.       -----------------------------------------------------------------------
  781.       PART II: Regular Character Keys
  782.  
  783.                   ESC      BS       ENTER      TAB
  784.                  #ESC     #BS      #ENTER     #TAB
  785.                  @ESC     @BS      @ENTER     @TAB*     @BackSlash
  786.                           ^BS      ^ENTER     ^TAB*     ^BackSlash     ^BREAK
  787.  
  788.                @A   @B   @C   @D   @E   @F   @G   @H   @I   @J   @K   @L   @M
  789.                ^A   ^B   ^C   ^D   ^E   ^F   ^G   ^H   ^I   ^J   ^K   ^L   ^M
  790.  
  791.                @N   @O   @P   @Q   @R   @S   @T   @U   @V   @W   @X   @Y   @Z
  792.                ^N   ^O   ^P   ^Q   ^R   ^S   ^T   ^U   ^V   ^W   ^X   ^Y   ^Z
  793.  
  794.                @`   @-*  @+*  @=   [@   @]   @'   @;   @/
  795.                     ^-                  ^]                  ^2   ^6
  796.       -----------------------------------------------------------------------
  797.       PART III: Keypad Keys
  798.  
  799.                  GREY/       GREY*        GREY-        GREY+       GreyEnter
  800.                 #GREY/      #GREY*       #GREY-       #GREY+      #GreyEnter
  801.                 @GREY/*     @GREY*       @GREY-       @GREY+      @GreyEnter*
  802.                 ^GREY/*     ^GREY**      ^GREY-*      ^GREY+*     ^GreyEnter*
  803.  
  804.                     UP        DOWN         LEFT        RIGHT         Keypad5
  805.                    #UP       #DOWN        #LEFT       #RIGHT        #Keypad5
  806.                    @UP*      @DOWN*       @LEFT*      @RIGHT*
  807.                    ^UP*      ^DOWN*       ^LEFT       ^RIGHT        ^Keypad5*
  808.  
  809.                   HOME        END      PGUP        PGDN        DEL       INS
  810.                  #HOME       #END     #PGUP       #PGDN       #DEL      #INS
  811.                  @HOME*      @END     @PGUP*      @PGDN*      @DEL*     @INS*
  812.                  ^HOME       ^END     ^PGUP*      ^PGDN       ^DEL*     ^INS*
  813.       -----------------------------------------------------------------------
  814.       PART IV: Meta Combination Keys
  815.  
  816.                        0 -> 9      A -> Z
  817.                      !   @   #   $   %   ^   &   *   (   )   -   _  +   =
  818.                      [   ]   \   :   ;   "   '   ,   <   .   >   ?  /   ESC
  819.  
  820.                      ^A -> ^Z     ^6      ^-     ^BACKSLASH      ^RBRACE
  821.       -----------------------------------------------------------------------
  822.       PART V: Mouse Buttoms
  823.  
  824.            M_LEFT  - Click left button      M_LL - Double click left button
  825.            M_RIGHT - Click right button     M_RR - Double click right button
  826.            M_MID   - Click middle button    M_MM - Double click middle button
  827.            M_LR    - Click both buttons
  828.       =======================================================================
  829. =============================================================================
  830. APPENDIX 3
  831.  
  832.              SUMMARY OF NJSTAR LOCATION-SENSITIVE MOUSE FUNCTIONS
  833.  
  834. NOTE: This appendix  presents a summary of NJStar's  location-sensitive mouse
  835.       function.  That is, if user points the mouse cursor at one of locations
  836.       indicated  below,   then  clicks   the left button once  (or  otherwise
  837.       described), it will invoke certain function.
  838.  
  839.       To use a mouse  within NJStar,  user needs to  install the mouse driver
  840.       program prior running NJStar.  Please see user's  mouse manual for more
  841.       information about installing the mouse driver program.
  842.  
  843.       Please watch the following sample  screen first.   The left side is the
  844.       rule for  Line number.   Please notice  that EGA monitor  has different
  845.       line number  from that of VGA monitor.  The bottom line is the rule for
  846.       column number.  Letters (A..G) indicates different areas.
  847.  
  848. Line:   +-------------------------------------------------------------------+
  849.      1  |                                A                                  |
  850.      2  |                                                                   |
  851.         |                                                                   |
  852.         |                                                                   |
  853.         |                                                                   |
  854.         |                                                                   |
  855.         |                                B                                  |
  856.         |                                                                   |
  857.         |                                                                   |
  858.         |                                                                   |
  859.         |                                                                   |
  860.         |                                                                   |
  861.         |                                                                   |
  862.   24/18 |                                                                   |
  863.         +----+-----------+----------------------------------+-------+-------+
  864.   25/19 | C  |   D       |               E                  |   F   |   G   |
  865.         +----+-----------+----------------------------------+-------+-------+
  866. Column: 0    5           12                                69      74      79
  867.  
  868.  
  869.      AREA   DEFINITION           OPERATION           FUNCTIONS
  870.      ====   ==================   =================   ========================
  871.       A     The top line         M_LEFT              Calling up the main menu
  872.  
  873.       B     From the 2nd line    Press the left      <ScrollDown>
  874.             to the line above    button and drag
  875.             the bottom line      down
  876.  
  877.                                  Press the left      <ScrollUp>
  878.                                  buttom and drag
  879.                                  up
  880.  
  881.                                  Other operations    User assigned functions
  882.  
  883.       C     Column 1-4 at the    M_LEFT              Toggle between <ASInput>
  884.             bottom line                              and <PYInput>
  885.  
  886.       D     Column 6-11 at       M_LEFT              <LianXiang>  when not in
  887.             the bottom line                          ASCII input mode
  888.  
  889.       E     Column 13-68 at      M_LEFT              Select a  Chinese  char.
  890.             the bottom line                          to editing screen
  891.  
  892.                                  M_LEFT              <FileList>    when    no
  893.                                                      Chinese   characters  to
  894.                                                      be input
  895.  
  896.       F     Column 69-73 at      M_LEFT              <MacroRec>
  897.             the bottom line
  898.  
  899.       G     Column 75-79 at      M_LEFT              <PureChinese>
  900.             the bottom line
  901.  
  902.      C-G    The bottom line      M_LR                <Escape>
  903.      ====   ==================   =================   ========================
  904.  
  905. =============================================================================
  906. APPENDIX 4
  907.  
  908.                 TABLE OF CONTENTS OF NJSTAR CHINESE MANUAL
  909.  
  910.  
  911.                                 ─┐      ┬╝
  912.                             =================
  913.  
  914.                                                                          ╥│┬δ
  915. ╡╝╤╘ ....................................................................
  916.  
  917. ╡┌╥╗╒┬  í╛─╧╝½╨╟í┐╡─├ⁿ┴ε╙δ╣ª─▄ ..........................................
  918.           1.1 ├ⁿ┴ε▓╦╡Ñ ..................................................
  919.           1.2 ╝≥├≈╠ß╩╛╞┴─╗ ..............................................
  920.           1.3 ┐╪╓╞╨╨ ....................................................
  921.           1.3 ▒╛╒┬╨í╜ß ..................................................
  922.  
  923. ╡┌╢■╒┬  ╘─╢┴╓╨╬─╬─╝■ ....................................................
  924.           2.1 ╞⌠╢»í╛─╧╝½╨╟í┐ ............................................
  925.           2.2 ╢┴╚í╬─╝■ ..................................................
  926.           2.3 ╣Γ▒Ω╥╞╢» ..................................................
  927.           2.4 ╬─╝■╟Θ┐÷ ..................................................
  928.           2.5 ═╦│÷í╛─╧╝½╨╟í┐ ............................................
  929.           2.6 ▒╛╒┬╨í╜ß ..................................................
  930.  
  931. ╡┌╚²╒┬  ╗∙▒╛▒α╝¡╣ª─▄ ....................................................
  932.           3.1 ╞⌠╢»í╛─╧╝½╨╟í┐ ............................................
  933.           3.2 ▒α╝¡╡─╫╝▒╕ ................................................
  934.           3.3 ╬─▒╛╩Σ╚δ ..................................................
  935.           3.4 ╬─▒╛╕┤╓╞╙δ╔╛│² ............................................
  936.           3.5 ╬─▒╛┐Θ▓┘╫≈ ................................................
  937.           3.6 ╚½╛╓▓Θ╒╥╙δ╠µ╗╗ ............................................
  938.           3.7 ┤≥╙í╕±╩╜┐╪╓╞├ⁿ┴ε ..........................................
  939.           3.8 ╬─╝■┤µ┼╠╙δ═╦│÷ ............................................
  940.           3.9 ┤≥╙í╬─╝■ ..................................................
  941.          3.10 ▒╛╒┬╨í╜ß ..................................................
  942.  
  943. ╡┌╦─╒┬  ║║╫╓╩Σ╚δ╖¿ ......................................................
  944.           4.1 ╞┤╥⌠╩Σ╚δ ..................................................
  945.           4.2 ┴¬╧δ╩Σ╚δ ..................................................
  946.           4.3 ╞┤╥⌠┴¬╧δ╩Σ╚δ ..............................................
  947.           4.4 ┴¼╞┤╩Σ╚δ ..................................................
  948.           4.5 ┴¬╧δ┤╩╡Σ╡─╣▄└φ ............................................
  949.           4.6 ╠╪╩Γ╡─╞┤╥⌠╩Σ╚δ ............................................
  950.           4.7 ╣·▒Ω╩Σ╚δ╖¿ ................................................
  951.           4.8 ╟°╬╗┬δ╩Σ╚δ╖¿ ..............................................
  952.           4.9 ╙ó╬─╩Σ╚δ╖¿ ................................................
  953.          4.10 ╞Σ╦ⁿ╩Σ╚δ╖╜╖¿ ..............................................
  954.          4.11 ▒╛╒┬╨í╜ß ..................................................
  955.  
  956. ╡┌╬σ╒┬  ╢α╬─╝■▒α╝¡╩▒╡─╬─╝■╣▄└φ ..........................................
  957.           5.1 ╞⌠╢»í╛─╧╝½╨╟í┐ ............................................
  958.           5.2 ╬─╝■╗╖ ....................................................
  959.           5.3 ╬─╝■╝Σ╡─╜╗╗╗ ..............................................
  960.           5.4 ┤µ┼╠╙δ═╦│÷ ................................................
  961.           5.5 ▒╛╒┬╨í╜ß ..................................................
  962.  
  963. ╡┌┴∙╒┬  ├ⁿ┴ε╫Θ║╧ ........................................................
  964.           6.1 ├ⁿ┴ε╫Θ║╧╡─╝╟┬╝╙δ╘╦╨╨ ......................................
  965.           6.2 ├ⁿ┴ε╫Θ║╧╡─┤µ┼╠╙δ╢┴╚í ......................................
  966.           6.3 ├ⁿ┴ε╫Θ║╧╡─▒α╨┤ ............................................
  967.           6.4 ├ⁿ┴ε╫Θ║╧╡─░▓╫░ ............................................
  968.           6.5 ▒╛╒┬╨í╜ß ..................................................
  969.  
  970. ╡┌╞▀╒┬  ╬─╝■╕±╩╜╫¬╗╗ ....................................................
  971.           7.1 ╩Σ│÷ PCX ╬─╝■ .............................................
  972.           7.2 zW ╬─╝■╕±╩╜╫¬╗╗ ...........................................
  973.           7.3 Hz ╬─╝■╕±╩╜╫¬╗╗ ...........................................
  974.           7.4 ▒╛╒┬╨í╜ß ..................................................
  975.  
  976. ╡┌░╦╒┬  │╠╨≥░▓╫░ ........................................................
  977.           8.1 ╧╡═│╥¬╟≤ ..................................................
  978.           8.2 ░▓╫░╣²│╠ ..................................................
  979.           8.3 ╗╖╛│╔Φ╓├ ..................................................
  980.           8.4 ▒╛╒┬╨í╜ß ..................................................
  981.  
  982. ╡┌╛┼╒┬  │╠╨≥╡≈╜┌ ........................................................
  983.           9.1 ╕¿╓·│╠╨≥ NJCONFIG.EXE .....................................
  984.           9.2 ╞┴─╗╤╒╔½╔Φ╓├ ..............................................
  985.           9.3 ╗∙▒╛▓╬╩²╔Φ╓├ ..............................................
  986.           9.4 ╝≥├≈╠ß╩╛╞┴─╗╔Φ╓├ ..........................................
  987.           9.5 ╝ⁿ╬╗╢¿╥σ╔Φ╓├ ..............................................
  988.           9.6 ┤≥╙í╗·╟²╢»╬─╝■╔Φ╓├ ........................................
  989.           9.7 ┤≥╙í╗·▓╬╩²╔Φ╓├ ............................................
  990.           9.8 ═╦│÷ NJCONFIG.EXE .........................................
  991.           9.9 ▒╛╒┬╨í╜ß ..................................................
  992.  
  993. ╡┌╩«╒┬  ╕¿╓·│╠╨≥ ........................................................
  994.          10.1 ┴¬╧δ┤╩╡Σ╕¿╓·│╠╨≥ LXGB2DIC.EXE .............................
  995.          10.2 ╘∞╫╓╕¿╓·│╠╨≥ CCFONT.EXE ...................................
  996.          10.3 ╝ñ╣Γ┤≥╙í╕¿╓·│╠╨≥ PRINTPS.EXE ..............................
  997.          10.4 ╩Σ╚δ╖╜╖¿╕¿╓·│╠╨≥ INPUTDIC.EXE .............................
  998.          10.5 ▒╛╒┬╨í╜ß ..................................................
  999.  
  1000. ╕╜┬╝╥╗  í╛─╧╝½╨╟í┐┐╔▒α╣ª─▄╥╗└└▒φ ........................................
  1001. ╕╜┬╝╢■  í╛─╧╝½╨╟í┐┐╔▒α╝ⁿ╬╗╥╗└└▒φ ........................................
  1002. ╕╜┬╝╚²  í╛─╧╝½╨╟í┐├ⁿ┴ε╫Θ║╧╣ª─▄╥╗└└▒φ ....................................
  1003. ╕╜┬╝╦─  í╛─╧╝½╨╟í┐╞⌠╢»╡─╦╡├≈▓╬╩²╙δ╬─╝■╤í╘± ..............................
  1004. ╕╜┬╝╬σ  í╛─╧╝½╨╟í┐│⌡╩╝╝ⁿ╬╗╢¿╥σ ..........................................
  1005. ╕╜┬╝┴∙  ╣·╙∩╫ó╥⌠╖√║┼íó═■═╫┬Ω-╡╘└φ╦╣┬▐┬φ╗»╞┤╖¿╙δ║║╙∩╞┤╥⌠╥⌠╜┌╢╘╒╒▒φ .......
  1006.  
  1007.                                                                         <END>
  1008.